home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _CE58CC50B89042D99BA190E4FC97E5D7 < prev    next >
Encoding:
Text File  |  2006-08-04  |  991 b   |  36 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel Corporation',
  6.         'Copyright': u'Copyright (c) 2004 Corel Corporation  All rights reserved.',
  7.         'Description': u'',
  8.         'Host': u'Paint Shop Pro 9',
  9.         'Host Version': u'9.00'
  10.         }
  11.  
  12. def Preset_Sculpture():
  13.     return {
  14.         'Ambience': -70, 
  15.         'Angle': 315, 
  16.         'Color': (255,0,0), 
  17.         'Depth': 60, 
  18.         'Elevation': 40, 
  19.         'Intensity': 75, 
  20.         'PatternName': u'Corel_08_002', 
  21.         'Shininess': 10, 
  22.         'Size': 100, 
  23.         'Smoothness': 10, 
  24.         'GeneralSettings': {
  25.             'ExecutionMode': App.Constants.ExecutionMode.Default, 
  26.             'PreviewVisible': True, 
  27.             'AutoProof': False, 
  28.             'AutoActionMode': App.Constants.AutoActionMode.Match
  29.             }
  30.         }
  31.  
  32. def Do(Environment):
  33.     # Sculpture
  34.     App.Do( Environment, 'Sculpture',         Preset_Sculpture())
  35.  
  36.